home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MPEG Archives
/
MPEG Archives.iso
/
mpeg
/
files
/
project1.dpr
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1996-12-28
|
188 b
|
14 lines
program Project1;
uses
Forms,
Unit1 in 'Unit1.pas' {Form1};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.